@charset "UTF-8";

/** BASED ON
* "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
* 
* @copyright       Copyright 2005-2008, Dirk Jesse
* @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
*                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
* @link            http://www.yaml.de
*/

/* Global reset of paddings and margins for all HTML elements */
* {
	margin: 0;
	padding: 0;
}

/* Correction: margin/padding reset caused too small select boxes. */
option {
	padding-left: 0.4em;
}

/* Global fix of the Italics bugs in IE 5.x and IE 6 */
* html body * {
	overflow: visible;
}

* html iframe,
* html frame {
	overflow: auto;
}

* html frameset {
	overflow: hidden;
}

/* Forcing vertical scrollbars in Netscape, Firefox and Safari browsers */
html {
	height: 100%;
	margin-bottom: 1px;
	font-size: 100.01%;
}

html * {
	font-size: 100.01%
}

body {
	/* Fix for rounding errors when scaling font sizes in older versions of Opera browser */
	font-size: 100.01%;

	/* Standard values for colors and text alignment */
	color: #000;
	background: #fff;
	text-align: left;
}

/* Clear borders for <fieldset> and <img> elements */
fieldset,
img {
	border: 0 solid;
}

/* new standard values for lists, blockquote and cite */
ul,
ol,
dl {
	/*margin: 0 0 1em 1em*/
	margin: 0
}

li {
	margin-left: 1.5em;
	line-height: 1.5em;
}

p {
	line-height: 1.4em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 1em 2em;
}

blockquote {
	margin: 0 0 1em 1.5em;
}

a {
	outline: none;
}

.clear {
	clear: both;
	height: 1px;
}

